home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 128
/
Vol 128 (Damaged).iso
/
games
/
scooby_d.swf
/
scripts
/
__Packages
/
com
/
ndimedia
/
math
/
alg
/
Point.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-03-26
|
254 b
|
19 lines
class com.ndimedia.math.alg.Point
{
var _x;
var _y;
function Point(x, y)
{
this._x = x;
this._y = y;
}
function get x()
{
return this._x;
}
function get y()
{
return this._y;
}
}